-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6.5.11 (e x)^m (a+b sech(c+d x^n))^p.nb
More file actions
4491 lines (4395 loc) · 242 KB
/
6.5.11 (e x)^m (a+b sech(c+d x^n))^p.nb
File metadata and controls
4491 lines (4395 loc) · 242 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 7.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 145, 7]
NotebookDataLength[ 243071, 4482]
NotebookOptionsPosition[ 237301, 4330]
NotebookOutlinePosition[ 239040, 4384]
CellTagsIndexPosition[ 238997, 4381]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[BoxData[
StyleBox[
RowBox[{Cell[TextData[StyleBox["Rules for integrands of the form",
FontFamily->"Arial",
FontSize->16]], "None"],
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", " ",
SuperscriptBox["x", "n"]}]}], "]"}]}]}], ")"}], "p"]}],
FontSize->16]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.496521708137803*^9, {
3.4965218981240697`*^9, 3.49652189838407*^9}, 3.4965229070755*^9,
3.519247079685614*^9, {3.5193208582062006`*^9, 3.5193208612170057`*^9},
3.5193325694253187`*^9, {3.5193415004828687`*^9, 3.5193415113404875`*^9}, {
3.5193513965602303`*^9, 3.519351397420232*^9}, {3.5194037839416766`*^9,
3.5194037847117205`*^9}, {3.5233155055329347`*^9, 3.523315506402936*^9}, {
3.523318726949605*^9, 3.5233187276796064`*^9}, {3.523920400879534*^9,
3.5239204094439487`*^9}, 3.52392096260852*^9, 3.523921038171853*^9,
3.5340477459008017`*^9, 3.5340515540554085`*^9, {3.536542511100503*^9,
3.53654251626051*^9}, {3.536775961244521*^9, 3.5367759616145215`*^9}, {
3.544373142375139*^9, 3.5443731599851637`*^9}, {3.5721095751430073`*^9,
3.5721095751430073`*^9}, {3.57578648209792*^9, 3.575786503859958*^9},
3.575786540270422*^9, {3.5757866379421935`*^9, 3.5757866609522343`*^9},
3.5758478960540276`*^9, 3.57584912634415*^9, 3.575849218264279*^9, {
3.575849275424359*^9, 3.57584927603436*^9}, 3.6857607860863657`*^9,
3.685761754022728*^9, 3.6860825413304205`*^9, 3.686083506290613*^9},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["1:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", " ",
SuperscriptBox["x", "n"]}]}], "]"}]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"], " ", Cell[TextData[Cell[BoxData[
RowBox[{
RowBox[{
FractionBox["1", "n"], "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}], "\[And]", " ",
RowBox[{"p", "\[Element]", "\[DoubleStruckCapitalZ]"}]}]]]],
"None"]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519250976620308*^9, 3.5192509795375133`*^9}, 3.5192520188581386`*^9, {
3.5193215829334736`*^9, 3.519321595725496*^9}, {3.5194112531544743`*^9,
3.5194112537784753`*^9}, 3.5194115106017265`*^9, {3.519411582829853*^9,
3.5194116058086934`*^9}, {3.5194117949434257`*^9,
3.5194118041006413`*^9}, {3.519412000598587*^9, 3.5194120130942087`*^9}, {
3.5197938929263773`*^9, 3.5197938931447773`*^9}, {3.521473804992657*^9,
3.521473829412691*^9}, {3.5214741072930803`*^9, 3.521474108863083*^9}, {
3.523316613544486*^9, 3.523316613544486*^9}, {3.5233184952952356`*^9,
3.5233184952952356`*^9}, {3.523318653417488*^9, 3.523318653417488*^9},
3.5239324213533645`*^9, {3.5239326372733436`*^9, 3.523932666538995*^9},
3.5239334940268483`*^9, {3.524105742828332*^9, 3.524105745433536*^9}, {
3.524105783326003*^9, 3.5241058043704395`*^9}, {3.524167197804468*^9,
3.524167275274576*^9}, {3.5241673584446926`*^9, 3.5241673584446926`*^9}, {
3.5241684217861814`*^9, 3.5241684663262434`*^9}, {3.5241684966162863`*^9,
3.5241685133463097`*^9}, {3.524168558706373*^9, 3.524168575716397*^9}, {
3.5242542194504414`*^9, 3.5242543397578526`*^9}, {3.5242543718471093`*^9,
3.5242544424216332`*^9}, {3.524254478910097*^9, 3.5242545759266677`*^9}, {
3.5242546436307864`*^9, 3.5242546436307864`*^9}, {3.5242547267009325`*^9,
3.5242547400857563`*^9}, {3.5242771462350645`*^9,
3.5242771465938654`*^9}, {3.5304877376854625`*^9, 3.530487831775594*^9}, {
3.5305002113339696`*^9, 3.53050021156397*^9}, {3.531256229526664*^9,
3.5312562621635933`*^9}, 3.5312563043041887`*^9, 3.5312565353964834`*^9,
3.5312718541780033`*^9, {3.531272022680298*^9, 3.531272043970912*^9},
3.5312721159644337`*^9, {3.531286527477171*^9, 3.53128654727564*^9}, {
3.53133653657067*^9, 3.5313365374719667`*^9}, {3.5332481026588316`*^9,
3.5332481046588345`*^9}, {3.533940608115779*^9, 3.5339406083757796`*^9}, {
3.533940643135828*^9, 3.533940671755868*^9}, {3.53394080166605*^9,
3.53394080166605*^9}, {3.5339408897661734`*^9, 3.5339408897661734`*^9}, {
3.5340308298369713`*^9, 3.534030830046972*^9}, {3.534112012597548*^9,
3.534112012877548*^9}, {3.534112474048194*^9, 3.534112474048194*^9}, {
3.534113465549582*^9, 3.534113471999591*^9}, {3.534114052440404*^9,
3.5341140526804037`*^9}, {3.534123360239563*^9, 3.5341233613895645`*^9}, {
3.534262842344612*^9, 3.5342628439826155`*^9}, {3.5345322182396417`*^9,
3.534532219211697*^9}, {3.534643132523288*^9, 3.5346431327603016`*^9}, {
3.5347067097112875`*^9, 3.534706709898488*^9}, {3.5347082903060637`*^9,
3.534708290493264*^9}, {3.5362781002847185`*^9, 3.5362781290847588`*^9}, {
3.5362782051648655`*^9, 3.5362782927449875`*^9}, 3.5362797486970263`*^9, {
3.536279783657075*^9, 3.536279832137143*^9}, {3.53628010156752*^9,
3.53628010156752*^9}, {3.5362801392775726`*^9, 3.536280166697611*^9}, {
3.53652906512737*^9, 3.5365290653769703`*^9}, {3.5365397273466053`*^9,
3.5365397330766134`*^9}, {3.536540186427248*^9, 3.5365401865872483`*^9}, {
3.539227727250819*^9, 3.53922772761082*^9}, {3.5393944379874496`*^9,
3.539394446018832*^9}, {3.539715023192065*^9, 3.5397150234140773`*^9}, {
3.539739975773082*^9, 3.5397399760140953`*^9}, {3.539797199704884*^9,
3.539797201294886*^9}, {3.539835437168765*^9, 3.5398354373871655`*^9}, {
3.5398732892608166`*^9, 3.539873290540019*^9}, {3.539908000735093*^9,
3.5399080032650967`*^9}, {3.539909324256946*^9, 3.539909324736947*^9}, {
3.5399100056779003`*^9, 3.539910006327901*^9}, {3.5399117038534846`*^9,
3.539911705973488*^9}, {3.5399118081136303`*^9, 3.539911840493676*^9}, {
3.5399120167139225`*^9, 3.539912058673981*^9}, {3.539912116434062*^9,
3.539912160944124*^9}, {3.5399122079541903`*^9, 3.539912209034192*^9}, {
3.540225401674527*^9, 3.5402254175709553`*^9}, {3.540246803939736*^9,
3.540246809609744*^9}, {3.5402469657699623`*^9, 3.5402469659899626`*^9}, {
3.54025326406878*^9, 3.54025326428878*^9}, {3.540319548749316*^9,
3.540319553564592*^9}, {3.540319615043108*^9, 3.540319615043108*^9}, {
3.54031990826388*^9, 3.54031991963153*^9}, {3.540320024044502*^9,
3.540320024044502*^9}, {3.5404234560150514`*^9, 3.5404234562802515`*^9}, {
3.54042664356545*^9, 3.5404266437682505`*^9}, {3.540427710030123*^9,
3.5404277102485237`*^9}, {3.540502502497757*^9, 3.540502505587761*^9}, {
3.541558935167153*^9, 3.5415589691752124`*^9}, {3.5415590130736895`*^9,
3.541559016256095*^9}, {3.541625196004671*^9, 3.541625196398693*^9},
3.5416263852991595`*^9, {3.5416288096753197`*^9, 3.5416288210353355`*^9}, {
3.5416454005828133`*^9, 3.541645406332822*^9}, {3.541645442062872*^9,
3.5416454471728787`*^9}, {3.541645529512994*^9, 3.5416455313729963`*^9}, {
3.5416499420791717`*^9, 3.541649942359172*^9}, {3.560538024109749*^9,
3.560538024369749*^9}, 3.5605380740698185`*^9, {3.5666111850869775`*^9,
3.566611185376978*^9}, {3.5696955663080134`*^9, 3.5696955663080134`*^9},
3.685766520004327*^9, {3.685814668389265*^9, 3.685814668389265*^9}, {
3.6858169198030386`*^9, 3.6858169445264525`*^9}, 3.6858173823154926`*^9, {
3.6858175247846413`*^9, 3.6858175263117285`*^9}, {3.685818330835745*^9,
3.6858183337949142`*^9}, 3.685818375570304*^9, 3.6858197670098896`*^9, {
3.6858245116672688`*^9, 3.6858245170775776`*^9}, 3.685825040784532*^9,
3.686082505181353*^9, 3.686082902965105*^9, 3.686083482653261*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Derivation: Integration by substitution", "Subsubsection",
CellChangeTimes->{
3.49539151296132*^9, 3.495678787084699*^9, 3.4956789080048685`*^9,
3.4956790295250387`*^9, 3.495679129075178*^9, {3.495679335075466*^9,
3.4956793607555027`*^9}, {3.495679674485942*^9, 3.4956796884659615`*^9}}],
Cell[TextData[{
"Basis: If ",
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"-", "1"}], "\[LessEqual]", "n", "\[LessEqual]", "1"}], " ",
"\[And]", " ",
RowBox[{"n", "\[NotEqual]", "0"}]}]]],
", then ",
Cell[BoxData[
RowBox[{
RowBox[{"F", "[",
SuperscriptBox["x", "n"], "]"}], "\[Equal]",
RowBox[{
FractionBox["1", "n"], " ",
RowBox[{"Subst", "[",
RowBox[{
RowBox[{
SuperscriptBox["x",
RowBox[{
FractionBox["1", "n"], "-", "1"}]],
RowBox[{"F", "[", "x", "]"}]}], ",", "x", ",",
SuperscriptBox["x", "n"]}], "]"}], " ",
RowBox[{
SubscriptBox["\[PartialD]", "x"],
SuperscriptBox["x", "n"]}]}]}]], "Input",
CellChangeTimes->{{3.496607156053342*^9, 3.4966071870033855`*^9}}]
}], "Subsubsection",
CellChangeTimes->{
3.496441803031353*^9, 3.4965396318089237`*^9, {3.4966002562016735`*^9,
3.4966002624716825`*^9}, 3.496600707442305*^9, 3.4966008475725017`*^9, {
3.4966070255131593`*^9, 3.496607032413169*^9}, {3.496607078713234*^9,
3.4966070808932366`*^9}, {3.4966071978234005`*^9, 3.496607200693404*^9}, {
3.4966322361067057`*^9, 3.4966322383967094`*^9}, {3.5182408053387165`*^9,
3.518240855102804*^9}, {3.518240891700468*^9, 3.5182409026360874`*^9}, {
3.5182410660151744`*^9, 3.5182410727231865`*^9}, {3.51824110908685*^9,
3.5182411327052917`*^9}, {3.518241193217798*^9, 3.5182411959634027`*^9}, {
3.518291448974951*^9, 3.5182914676169834`*^9}, {3.518291524323083*^9,
3.51829153976711*^9}, {3.518291575631573*^9, 3.518291589562398*^9}, {
3.5182917514854827`*^9, 3.5182917625459023`*^9}, {3.5197703785418744`*^9,
3.5197704585544147`*^9}, {3.5197801993811245`*^9, 3.5197802307059793`*^9},
3.5197802678964443`*^9, {3.5349619561249747`*^9, 3.53496200984505*^9}, {
3.5349621015651784`*^9, 3.534962104035182*^9}, {3.534962163665265*^9,
3.534962164115266*^9}, 3.534962219785344*^9, {3.5349640822679515`*^9,
3.534964083937954*^9}, {3.534965129279417*^9, 3.534965164959467*^9}, {
3.5349652080495276`*^9, 3.5349652080495276`*^9}, {3.5349746773080826`*^9,
3.5349746773080826`*^9}, {3.534975420939124*^9, 3.534975423099127*^9}, {
3.685765369788538*^9, 3.685765369788538*^9}, {3.685824654100415*^9,
3.685824654100415*^9}}],
Cell[TextData[{
"Note: If ",
Cell[BoxData[
RowBox[{
FractionBox["1", "n"], "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "-"]}]]],
", resulting integrand is not integrable."
}], "Subsubsection",
CellChangeTimes->{
3.49539151296132*^9, 3.495678787084699*^9, 3.4956789080048685`*^9,
3.4956790295250387`*^9, 3.495679129075178*^9, {3.495679335075466*^9,
3.4956793607555027`*^9}, {3.495679674485942*^9, 3.4956796884659615`*^9}, {
3.5608145301974535`*^9, 3.560814595487544*^9}, 3.6858144446954703`*^9}],
Cell[TextData[{
"Rule: If ",
Cell[BoxData[
RowBox[{
RowBox[{
FractionBox["1", "n"], "\[Element]",
SuperscriptBox["\[DoubleStruckCapitalZ]", "+"]}], "\[And]", " ",
RowBox[{"p", "\[Element]", "\[DoubleStruckCapitalZ]"}]}]]],
", then"
}], "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.48070534977779*^9, {3.4928296953212276`*^9, 3.492829707041244*^9}, {
3.495391733731629*^9, 3.495391739521637*^9}, {3.495678797624714*^9,
3.4956788080547285`*^9}, 3.4956788502147875`*^9, {3.4956789897249827`*^9,
3.495679002425001*^9}, {3.495679072285098*^9, 3.4956790738051004`*^9}, {
3.495679236085328*^9, 3.495679236315328*^9}, {3.49567937329552*^9,
3.4956794246455917`*^9}, {3.495679535505747*^9, 3.495679554085773*^9}, {
3.5193214041603594`*^9, 3.5193214071867647`*^9}, {3.5193301244794507`*^9,
3.5193301257494526`*^9}, 3.5193476221390333`*^9, 3.5193479662828407`*^9, {
3.5193485103181963`*^9, 3.5193485549498744`*^9}, {3.519663663325344*^9,
3.5196636652216225`*^9}, {3.519680530562682*^9, 3.519680530562682*^9}, {
3.5197556284379497`*^9, 3.5197556284379497`*^9}, {3.5197580987514877`*^9,
3.519758100545491*^9}, {3.5197581334459496`*^9, 3.519758155582388*^9}, {
3.519758193256454*^9, 3.5197582684329863`*^9}, {3.5197584793297567`*^9,
3.519758583210339*^9}, {3.5197800633332853`*^9, 3.519780130444603*^9},
3.519780263762437*^9, {3.519780890789939*^9, 3.519780929602807*^9},
3.5197826749958725`*^9, {3.5213126916874757`*^9, 3.5213126916874757`*^9}, {
3.521328242751012*^9, 3.521328242751012*^9}, {3.532302339923381*^9,
3.5323023440533867`*^9}, {3.5323027369539366`*^9,
3.5323027369539366`*^9}, {3.5326362525142794`*^9,
3.5326362612742915`*^9}, {3.534962194665309*^9, 3.5349622042053223`*^9}, {
3.5349623337055035`*^9, 3.5349623339155035`*^9}, {3.5349625695458336`*^9,
3.5349625695458336`*^9}, {3.5349651959395103`*^9,
3.5349652008995175`*^9}, {3.534966956776985*^9, 3.5349669586769876`*^9}, {
3.5349743512176266`*^9, 3.5349743752476597`*^9}, {3.5349744860878153`*^9,
3.5349744860878153`*^9}, {3.5349767696610117`*^9, 3.5349767696610117`*^9},
3.5362786460954823`*^9, {3.536282186878441*^9, 3.5362821923884487`*^9}, {
3.5362823665986924`*^9, 3.5362823705586977`*^9}, {3.539394469251404*^9,
3.539394469251404*^9}, {3.539873282116004*^9, 3.539873283254806*^9}, {
3.5399121983141766`*^9, 3.5399121983141766`*^9}, {3.5402255014211025`*^9,
3.5402255014211025`*^9}, {3.5402468137997494`*^9,
3.5402468148197513`*^9}, {3.540398290646603*^9, 3.540398290646603*^9}, {
3.5415590242277093`*^9, 3.5415590242277093`*^9}, {3.569695568959165*^9,
3.569695568959165*^9}, 3.6858144665747223`*^9, {3.6858146365304427`*^9,
3.6858146623109174`*^9}, {3.6858245571288686`*^9, 3.6858245571298685`*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", " ",
SuperscriptBox["x", "n"]}]}], "]"}]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
FractionBox["1", "n"]}]}], " ",
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox["x",
RowBox[{
FractionBox["1", "n"], "-", "1"}]], " ",
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", " ", "x"}]}], "]"}]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}]}]}], ",", "x", ",",
SuperscriptBox["x", "n"]}], "]"}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, 3.495391718911608*^9,
3.495391753851657*^9, 3.495678825124752*^9, 3.495678868624813*^9,
3.495678953284932*^9, 3.4956790561650763`*^9, {3.495679179585249*^9,
3.495679198215275*^9}, 3.4956794688056536`*^9, 3.495679563895787*^9, {
3.519347698835971*^9, 3.519347728101622*^9}, {3.5193477739345026`*^9,
3.519347777538109*^9}, {3.5193478217797866`*^9, 3.5193478387838163`*^9}, {
3.519348134591536*^9, 3.5193481428439503`*^9}, {3.5197576021246157`*^9,
3.519757605431822*^9}, {3.5197795700292187`*^9, 3.519779608935687*^9}, {
3.534962149765246*^9, 3.5349621724552774`*^9}, {3.5349650775293446`*^9,
3.534965103459381*^9}, 3.534973862136942*^9, 3.5349742172974386`*^9,
3.5362783981251354`*^9, {3.536278591995407*^9, 3.536278607745429*^9},
3.5362787390056124`*^9, 3.5362788817458124`*^9, {3.536280261137744*^9,
3.5362803250178328`*^9}, 3.5362820058481874`*^9, {3.540246862469818*^9,
3.540246868999827*^9}, {3.5415590468789487`*^9, 3.5415590660669823`*^9}, {
3.5416454118028293`*^9, 3.5416454148528337`*^9}, {3.6857665208203735`*^9,
3.685766521339403*^9}, 3.68581696685773*^9, {3.685817018367676*^9,
3.6858170217518697`*^9}, 3.685817358685141*^9, {3.6858175346492057`*^9,
3.685817537360361*^9}, {3.6858245649803176`*^9, 3.685824565514348*^9}, {
3.6858246657610817`*^9, 3.6858246796858788`*^9}, {3.686082505581376*^9,
3.686082505877393*^9}, {3.686083482667262*^9, 3.686083482674262*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}, {3.534113202099213*^9, 3.5341132112992263`*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "+",
RowBox[{"b_.", "*",
RowBox[{"Sech", "[",
RowBox[{"c_.", "+",
RowBox[{"d_.", "*",
RowBox[{"x_", "^", "n_"}]}]}], "]"}]}]}], ")"}], "^", "p_."}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{
RowBox[{"1", "/", "n"}], "*",
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{"x", "^",
RowBox[{"(",
RowBox[{
RowBox[{"1", "/", "n"}], "-", "1"}], ")"}]}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", "*", "x"}]}], "]"}]}]}], ")"}], "^", "p"}]}], ",",
"x"}], "]"}], ",", "x", ",",
RowBox[{"x", "^", "n"}]}], "]"}]}], " ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "c", ",", "d", ",", "p"}], "}"}], ",",
"x"}], "]"}], " ", "&&", " ",
RowBox[{"IGtQ", "[",
RowBox[{
RowBox[{"1", "/", "n"}], ",", "0"}], "]"}], " ", "&&", " ",
RowBox[{"IntegerQ", "[", "p", "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097165958683*^9, 3.4940971894087152`*^9}, {
3.4940972668388243`*^9, 3.4940972723188314`*^9}, 3.49539148440128*^9,
3.495422238811969*^9, 3.5239327382679205`*^9, {3.5241061049829674`*^9,
3.5241061158093867`*^9}, {3.5241061634986706`*^9, 3.524106178100296*^9}, {
3.5241522039971824`*^9, 3.5241522138657465`*^9}, {3.524167459434834*^9,
3.524167501524893*^9}, 3.5241675598849745`*^9, {3.5241689646025457`*^9,
3.524169057582676*^9}, {3.5241694886052837`*^9, 3.5241694922252893`*^9}, {
3.5241697349256287`*^9, 3.524169770915679*^9}, {3.524169890175846*^9,
3.52416989278585*^9}, {3.5241699517859325`*^9, 3.524169977745969*^9}, {
3.5241702075262904`*^9, 3.5241702284463196`*^9}, {3.5241703474164867`*^9,
3.5241703535564947`*^9}, {3.5241704168565836`*^9,
3.5241704281665993`*^9}, {3.5241707090069923`*^9, 3.5241707118469963`*^9},
3.5241707660170727`*^9, {3.5241735897163877`*^9, 3.524173666646496*^9}, {
3.524173777586651*^9, 3.5241738523767557`*^9}, {3.5241739428768826`*^9,
3.524173979156933*^9}, 3.524174297647379*^9, {3.524185483815135*^9,
3.524185485365137*^9}, {3.524185602895302*^9, 3.5241856035153027`*^9}, {
3.5241856771854057`*^9, 3.5241856830554132`*^9}, {3.524185838105631*^9,
3.5241858734356804`*^9}, {3.5241859285057573`*^9, 3.524185944045779*^9}, {
3.524186003185862*^9, 3.524186038265911*^9}, {3.52418611602602*^9,
3.5241861192260246`*^9}, 3.524186217346162*^9, 3.5241863019362803`*^9, {
3.5241863667163706`*^9, 3.5241863784563875`*^9}, {3.52418651596658*^9,
3.5241865406766143`*^9}, {3.5241867699369354`*^9,
3.5241868085469894`*^9}, {3.5241868836270943`*^9, 3.5241869237971506`*^9},
3.5241869873472395`*^9, {3.5241870885173817`*^9, 3.524187101037399*^9}, {
3.5241871740575013`*^9, 3.5241871912575254`*^9}, {3.524187306817687*^9,
3.5241873162877*^9}, {3.5241873622777643`*^9, 3.524187409757831*^9},
3.524187460357902*^9, {3.5241874977879543`*^9, 3.524187498347955*^9}, {
3.524187557468038*^9, 3.5241875586680393`*^9}, {3.524187589468083*^9,
3.5241875901780834`*^9}, {3.5241876610181828`*^9,
3.5241876929782276`*^9}, {3.524187781768352*^9, 3.524187783788355*^9}, {
3.5241896786382575`*^9, 3.524189683318266*^9}, {3.524234559451813*^9,
3.5242346007294855`*^9}, {3.524238368588504*^9, 3.5242383752965155`*^9}, {
3.5242384122217803`*^9, 3.524238419928194*^9}, {3.5242393344018*^9,
3.524239346819422*^9}, {3.5242394127451377`*^9, 3.5242394565500145`*^9}, {
3.52423959033585*^9, 3.524239629803919*^9}, {3.524239671487192*^9,
3.5242397220468807`*^9}, {3.524239788190997*^9, 3.5242398647715316`*^9}, {
3.5242437175850987`*^9, 3.5242437668343854`*^9}, {3.524244465247612*^9,
3.5242444873372507`*^9}, {3.524244751882516*^9, 3.524244753208518*^9}, {
3.524245115768755*^9, 3.524245137000392*^9}, {3.5242452528149953`*^9,
3.5242452554826*^9}, {3.5242456723777323`*^9, 3.5242456731889334`*^9}, {
3.524245869936479*^9, 3.5242459980595045`*^9}, {3.5242461068384953`*^9,
3.5242461450273623`*^9}, {3.524246187958638*^9, 3.52424618922224*^9}, {
3.5242462316543145`*^9, 3.524246267690378*^9}, {3.5242463181564665`*^9,
3.5242463224620743`*^9}, {3.5242485499936485`*^9, 3.524248561823665*^9}, {
3.524248621593749*^9, 3.5242486251937537`*^9}, {3.5242487642059507`*^9,
3.5242487732359633`*^9}, {3.5242532845563993`*^9,
3.5242532909524107`*^9}, {3.52425347849594*^9, 3.5242535106475964`*^9}, {
3.524253596868948*^9, 3.5242536191613874`*^9}, {3.5242537436028056`*^9,
3.5242537593588333`*^9}, 3.5242539276207285`*^9, {3.524254113276655*^9,
3.5242541142126565`*^9}, {3.5242547334245443`*^9, 3.5242547363105493`*^9},
3.5249480328482866`*^9, 3.5249480870383625`*^9, 3.530383624409831*^9,
3.5303836572717104`*^9, {3.5304855821174417`*^9, 3.5304855869274483`*^9}, {
3.530486056548106*^9, 3.530486059638111*^9}, {3.5304860949231606`*^9,
3.5304860971731634`*^9}, {3.530486238303361*^9, 3.530486240243364*^9}, {
3.530486952589362*^9, 3.5304870139844484`*^9}, {3.5304870692495255`*^9,
3.5304871419796276`*^9}, 3.530487215744731*^9, {3.530487355799927*^9,
3.5304873566799283`*^9}, {3.5304874052599964`*^9, 3.530487445625053*^9}, {
3.530487479950101*^9, 3.5304874842801075`*^9}, {3.5304875702952275`*^9,
3.5304875724102306`*^9}, {3.5304876163102922`*^9,
3.5304876315153136`*^9}, {3.5312563706495886`*^9, 3.531256451626027*^9},
3.531256559250784*^9, {3.5312719121413507`*^9, 3.5312719878001423`*^9}, {
3.5312755920427885`*^9, 3.5312755952874546`*^9}, {3.5312856302770605`*^9,
3.531285654712197*^9}, {3.53128571933512*^9, 3.531285787002421*^9}, {
3.5312858245464067`*^9, 3.53128595057763*^9}, {3.5312865586519985`*^9,
3.5312865654417615`*^9}, 3.5312884106750765`*^9, 3.5312884470173345`*^9, {
3.5312884901092978`*^9, 3.5312885050908403`*^9}, {3.5312897715218782`*^9,
3.531289778872448*^9}, {3.531289921757907*^9, 3.531289929969715*^9}, {
3.5312899831061215`*^9, 3.531289984918728*^9}, {3.5312906523184013`*^9,
3.5312906554428945`*^9}, {3.5313272051827936`*^9,
3.5313272099296193`*^9}, {3.531327286489707*^9, 3.5313272948817744`*^9}, {
3.531328437394627*^9, 3.5313284476694016`*^9}, {3.531328488668355*^9,
3.5313284899702272`*^9}, {3.5313285673514957`*^9,
3.5313285721283646`*^9}, {3.531328972333832*^9, 3.5313290468309536`*^9},
3.5313291984689984`*^9, 3.5313298886113744`*^9, {3.5313316869672832`*^9,
3.5313316871876*^9}, {3.531333470732211*^9, 3.531333473936819*^9}, {
3.531334503567355*^9, 3.5313345333702097`*^9}, {3.531334712117235*^9,
3.531334724334803*^9}, {3.5313353872780685`*^9, 3.531335388289523*^9},
3.531335434696253*^9, {3.5313387527874336`*^9, 3.5313387613597603`*^9}, {
3.531339025249214*^9, 3.5313390434353647`*^9}, 3.531341876639312*^9, {
3.5313421989627905`*^9, 3.531342251227944*^9}, {3.531346616364702*^9,
3.531346616715206*^9}, {3.5313466656655936`*^9, 3.5313466801764593`*^9}, {
3.5315136290734544`*^9, 3.531513629934693*^9}, {3.531605034435397*^9,
3.5316050365784783`*^9}, {3.5316052098275986`*^9,
3.5316052120307665`*^9}, {3.531605458364978*^9, 3.531605459536662*^9}, {
3.531699937927347*^9, 3.531699949764368*^9}, {3.531700346314579*^9,
3.531700368586605*^9}, {3.533937757524288*^9, 3.5339377669843016`*^9}, {
3.5339377979043446`*^9, 3.533937819634375*^9}, {3.533938179374879*^9,
3.5339381969849033`*^9}, {3.5339382401149635`*^9, 3.533938297835045*^9}, {
3.533938343125108*^9, 3.53393834467511*^9}, {3.533940711115923*^9,
3.533940734385956*^9}, {3.533940828086087*^9, 3.533940838736102*^9}, {
3.5339509493977776`*^9, 3.533950953016984*^9}, {3.5339537404454803`*^9,
3.533953741022681*^9}, 3.5341123221979814`*^9, {3.534112354908027*^9,
3.5341124143381104`*^9}, {3.5341132023392134`*^9, 3.5341132204892387`*^9},
3.5341132649293013`*^9, {3.534113300779351*^9, 3.534113329099391*^9},
3.5341133652694416`*^9, 3.5341142271706486`*^9, {3.5345321670477133`*^9,
3.534532171965995*^9}, {3.5362786526054916`*^9, 3.5362789025258417`*^9},
3.536278964715928*^9, {3.536280431045983*^9, 3.5362805001260796`*^9}, {
3.536282251078531*^9, 3.5362822674485536`*^9}, 3.536282315798621*^9, {
3.539394472692601*^9, 3.539394480494047*^9}, {3.539873240448331*^9,
3.5398732425387344`*^9}, {3.5398764447838063`*^9, 3.539876499193883*^9}, {
3.5398766331940703`*^9, 3.5398766391340785`*^9}, {3.539876715014185*^9,
3.539876723554197*^9}, {3.53987682549434*^9, 3.5398768289543447`*^9}, {
3.539876864374394*^9, 3.539876888614428*^9}, 3.5398769372844963`*^9, {
3.5398772720149646`*^9, 3.539877285924984*^9}, {3.53987916159761*^9,
3.5398791659376163`*^9}, {3.5399079172749767`*^9, 3.539907920534981*^9}, {
3.539907989705078*^9, 3.5399079959450865`*^9}, {3.5399084131756706`*^9,
3.539908413365671*^9}, {3.5399098233376446`*^9, 3.539909825507648*^9}, {
3.539911719093506*^9, 3.5399117237635126`*^9}, {3.5399117615235653`*^9,
3.539911789053604*^9}, {3.539911825573655*^9, 3.539911826853657*^9}, {
3.5399121026740427`*^9, 3.5399121080540504`*^9}, {3.5400525421824102`*^9,
3.540052546452416*^9}, {3.540225445604204*^9, 3.5402254620466332`*^9}, {
3.540246837799783*^9, 3.5402468548298073`*^9}, 3.540253158138632*^9, {
3.540258206054838*^9, 3.5402582233148623`*^9}, {3.540258564005339*^9,
3.5402585665953426`*^9}, 3.5403195777839775`*^9, 3.5403198886027546`*^9,
3.5403200387483425`*^9, {3.54034257060467*^9, 3.540342575644677*^9}, {
3.540398255328141*^9, 3.540398258401346*^9}, {3.5415590771274023`*^9,
3.5415591276558905`*^9}, {3.5416498676490674`*^9, 3.5416498715990725`*^9},
3.541875470169911*^9, {3.5605358410266924`*^9, 3.560535849346704*^9},
3.569695608938452*^9, {3.685766521868433*^9, 3.6857665223564615`*^9}, {
3.685814676765744*^9, 3.6858146853222337`*^9}, {3.685817453547567*^9,
3.6858175185792866`*^9}, {3.6858175674780836`*^9, 3.685817574945511*^9}, {
3.6858246965328417`*^9, 3.685824741503414*^9}, {3.685845303182884*^9,
3.6858453036976852`*^9}, {3.686082506085405*^9, 3.686082506326419*^9}, {
3.686083482681263*^9, 3.686083482688263*^9}, {3.7152127521728535`*^9,
3.71521275683412*^9}},
Background->GrayLevel[0.85]],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "+",
RowBox[{"b_.", "*",
RowBox[{"Csch", "[",
RowBox[{"c_.", "+",
RowBox[{"d_.", "*",
RowBox[{"x_", "^", "n_"}]}]}], "]"}]}]}], ")"}], "^", "p_."}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{
RowBox[{"1", "/", "n"}], "*",
RowBox[{"Subst", "[",
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{"x", "^",
RowBox[{"(",
RowBox[{
RowBox[{"1", "/", "n"}], "-", "1"}], ")"}]}], "*",
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"Csch", "[",
RowBox[{"c", "+",
RowBox[{"d", "*", "x"}]}], "]"}]}]}], ")"}], "^", "p"}]}], ",",
"x"}], "]"}], ",", "x", ",",
RowBox[{"x", "^", "n"}]}], "]"}]}], " ", "/;", "\n",
RowBox[{
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "c", ",", "d", ",", "p"}], "}"}], ",",
"x"}], "]"}], " ", "&&", " ",
RowBox[{"IGtQ", "[",
RowBox[{
RowBox[{"1", "/", "n"}], ",", "0"}], "]"}], " ", "&&", " ",
RowBox[{"IntegerQ", "[", "p", "]"}]}]}]}]], "Code",
CellChangeTimes->{{3.494097165958683*^9, 3.4940971894087152`*^9}, {
3.4940972668388243`*^9, 3.4940972723188314`*^9}, 3.49539148440128*^9,
3.495422238811969*^9, 3.5239327382679205`*^9, {3.5241061049829674`*^9,
3.5241061158093867`*^9}, {3.5241061634986706`*^9, 3.524106178100296*^9}, {
3.5241522039971824`*^9, 3.5241522138657465`*^9}, {3.524167459434834*^9,
3.524167501524893*^9}, 3.5241675598849745`*^9, {3.5241689646025457`*^9,
3.524169057582676*^9}, {3.5241694886052837`*^9, 3.5241694922252893`*^9}, {
3.5241697349256287`*^9, 3.524169770915679*^9}, {3.524169890175846*^9,
3.52416989278585*^9}, {3.5241699517859325`*^9, 3.524169977745969*^9}, {
3.5241702075262904`*^9, 3.5241702284463196`*^9}, {3.5241703474164867`*^9,
3.5241703535564947`*^9}, {3.5241704168565836`*^9,
3.5241704281665993`*^9}, {3.5241707090069923`*^9, 3.5241707118469963`*^9},
3.5241707660170727`*^9, {3.5241735897163877`*^9, 3.524173666646496*^9}, {
3.524173777586651*^9, 3.5241738523767557`*^9}, {3.5241739428768826`*^9,
3.524173979156933*^9}, 3.524174297647379*^9, {3.524185483815135*^9,
3.524185485365137*^9}, {3.524185602895302*^9, 3.5241856035153027`*^9}, {
3.5241856771854057`*^9, 3.5241856830554132`*^9}, {3.524185838105631*^9,
3.5241858734356804`*^9}, {3.5241859285057573`*^9, 3.524185944045779*^9}, {
3.524186003185862*^9, 3.524186038265911*^9}, {3.52418611602602*^9,
3.5241861192260246`*^9}, 3.524186217346162*^9, 3.5241863019362803`*^9, {
3.5241863667163706`*^9, 3.5241863784563875`*^9}, {3.52418651596658*^9,
3.5241865406766143`*^9}, {3.5241867699369354`*^9,
3.5241868085469894`*^9}, {3.5241868836270943`*^9, 3.5241869237971506`*^9},
3.5241869873472395`*^9, {3.5241870885173817`*^9, 3.524187101037399*^9}, {
3.5241871740575013`*^9, 3.5241871912575254`*^9}, {3.524187306817687*^9,
3.5241873162877*^9}, {3.5241873622777643`*^9, 3.524187409757831*^9},
3.524187460357902*^9, {3.5241874977879543`*^9, 3.524187498347955*^9}, {
3.524187557468038*^9, 3.5241875586680393`*^9}, {3.524187589468083*^9,
3.5241875901780834`*^9}, {3.5241876610181828`*^9,
3.5241876929782276`*^9}, {3.524187781768352*^9, 3.524187783788355*^9}, {
3.5241896786382575`*^9, 3.524189683318266*^9}, {3.524234559451813*^9,
3.5242346007294855`*^9}, {3.524238368588504*^9, 3.5242383752965155`*^9}, {
3.5242384122217803`*^9, 3.524238419928194*^9}, {3.5242393344018*^9,
3.524239346819422*^9}, {3.5242394127451377`*^9, 3.5242394565500145`*^9}, {
3.52423959033585*^9, 3.524239629803919*^9}, {3.524239671487192*^9,
3.5242397220468807`*^9}, {3.524239788190997*^9, 3.5242398647715316`*^9}, {
3.5242437175850987`*^9, 3.5242437668343854`*^9}, {3.524244465247612*^9,
3.5242444873372507`*^9}, {3.524244751882516*^9, 3.524244753208518*^9}, {
3.524245115768755*^9, 3.524245137000392*^9}, {3.5242452528149953`*^9,
3.5242452554826*^9}, {3.5242456723777323`*^9, 3.5242456731889334`*^9}, {
3.524245869936479*^9, 3.5242459980595045`*^9}, {3.5242461068384953`*^9,
3.5242461450273623`*^9}, {3.524246187958638*^9, 3.52424618922224*^9}, {
3.5242462316543145`*^9, 3.524246267690378*^9}, {3.5242463181564665`*^9,
3.5242463224620743`*^9}, {3.5242485499936485`*^9, 3.524248561823665*^9}, {
3.524248621593749*^9, 3.5242486251937537`*^9}, {3.5242487642059507`*^9,
3.5242487732359633`*^9}, {3.5242532845563993`*^9,
3.5242532909524107`*^9}, {3.52425347849594*^9, 3.5242535106475964`*^9}, {
3.524253596868948*^9, 3.5242536191613874`*^9}, {3.5242537436028056`*^9,
3.5242537593588333`*^9}, 3.5242539276207285`*^9, {3.524254113276655*^9,
3.5242541142126565`*^9}, {3.5242547334245443`*^9, 3.5242547363105493`*^9},
3.5249480328482866`*^9, 3.5249480870383625`*^9, 3.530383624409831*^9,
3.5303836572717104`*^9, {3.5304855821174417`*^9, 3.5304855869274483`*^9}, {
3.530486056548106*^9, 3.530486059638111*^9}, {3.5304860949231606`*^9,
3.5304860971731634`*^9}, {3.530486238303361*^9, 3.530486240243364*^9}, {
3.530486952589362*^9, 3.5304870139844484`*^9}, {3.5304870692495255`*^9,
3.5304871419796276`*^9}, 3.530487215744731*^9, {3.530487355799927*^9,
3.5304873566799283`*^9}, {3.5304874052599964`*^9, 3.530487445625053*^9}, {
3.530487479950101*^9, 3.5304874842801075`*^9}, {3.5304875702952275`*^9,
3.5304875724102306`*^9}, {3.5304876163102922`*^9,
3.5304876315153136`*^9}, {3.5312563706495886`*^9, 3.531256451626027*^9},
3.531256559250784*^9, {3.5312719121413507`*^9, 3.5312719878001423`*^9}, {
3.5312755920427885`*^9, 3.5312755952874546`*^9}, {3.5312856302770605`*^9,
3.531285654712197*^9}, {3.53128571933512*^9, 3.531285787002421*^9}, {
3.5312858245464067`*^9, 3.53128595057763*^9}, {3.5312865586519985`*^9,
3.5312865654417615`*^9}, 3.5312884106750765`*^9, 3.5312884470173345`*^9, {
3.5312884901092978`*^9, 3.5312885050908403`*^9}, {3.5312897715218782`*^9,
3.531289778872448*^9}, {3.531289921757907*^9, 3.531289929969715*^9}, {
3.5312899831061215`*^9, 3.531289984918728*^9}, {3.5312906523184013`*^9,
3.5312906554428945`*^9}, {3.5313272051827936`*^9,
3.5313272099296193`*^9}, {3.531327286489707*^9, 3.5313272948817744`*^9}, {
3.531328437394627*^9, 3.5313284476694016`*^9}, {3.531328488668355*^9,
3.5313284899702272`*^9}, {3.5313285673514957`*^9,
3.5313285721283646`*^9}, {3.531328972333832*^9, 3.5313290468309536`*^9},
3.5313291984689984`*^9, 3.5313298886113744`*^9, {3.5313316869672832`*^9,
3.5313316871876*^9}, {3.531333470732211*^9, 3.531333473936819*^9}, {
3.531334503567355*^9, 3.5313345333702097`*^9}, {3.531334712117235*^9,
3.531334724334803*^9}, {3.5313353872780685`*^9, 3.531335388289523*^9},
3.531335434696253*^9, {3.5313387527874336`*^9, 3.5313387613597603`*^9}, {
3.531339025249214*^9, 3.5313390434353647`*^9}, 3.531341876639312*^9, {
3.5313421989627905`*^9, 3.531342251227944*^9}, {3.531346616364702*^9,
3.531346616715206*^9}, {3.5313466656655936`*^9, 3.5313466801764593`*^9}, {
3.5315136290734544`*^9, 3.531513629934693*^9}, {3.531605034435397*^9,
3.5316050365784783`*^9}, {3.5316052098275986`*^9,
3.5316052120307665`*^9}, {3.531605458364978*^9, 3.531605459536662*^9}, {
3.531699937927347*^9, 3.531699949764368*^9}, {3.531700346314579*^9,
3.531700368586605*^9}, {3.533937757524288*^9, 3.5339377669843016`*^9}, {
3.5339377979043446`*^9, 3.533937819634375*^9}, {3.533938179374879*^9,
3.5339381969849033`*^9}, {3.5339382401149635`*^9, 3.533938297835045*^9}, {
3.533938343125108*^9, 3.53393834467511*^9}, {3.533940711115923*^9,
3.533940734385956*^9}, {3.533940828086087*^9, 3.533940838736102*^9}, {
3.5339509493977776`*^9, 3.533950953016984*^9}, {3.5339537404454803`*^9,
3.533953741022681*^9}, 3.5341123221979814`*^9, {3.534112354908027*^9,
3.5341124143381104`*^9}, {3.5341132023392134`*^9, 3.5341132204892387`*^9},
3.5341132649293013`*^9, {3.534113300779351*^9, 3.534113329099391*^9},
3.5341133652694416`*^9, 3.5341142271706486`*^9, {3.5345321670477133`*^9,
3.534532171965995*^9}, {3.5362786526054916`*^9, 3.5362789025258417`*^9},
3.536278964715928*^9, {3.536280431045983*^9, 3.5362805001260796`*^9}, {
3.536282251078531*^9, 3.5362822674485536`*^9}, 3.536282315798621*^9, {
3.539394472692601*^9, 3.539394480494047*^9}, {3.539873240448331*^9,
3.5398732425387344`*^9}, {3.5398764447838063`*^9, 3.539876499193883*^9}, {
3.5398766331940703`*^9, 3.5398766391340785`*^9}, {3.539876715014185*^9,
3.539876723554197*^9}, {3.53987682549434*^9, 3.5398768289543447`*^9}, {
3.539876864374394*^9, 3.539876888614428*^9}, 3.5398769372844963`*^9, {
3.5398772720149646`*^9, 3.539877285924984*^9}, {3.53987916159761*^9,
3.5398791659376163`*^9}, {3.5399079172749767`*^9, 3.539907920534981*^9}, {
3.539907989705078*^9, 3.5399079959450865`*^9}, {3.5399084131756706`*^9,
3.539908413365671*^9}, {3.5399098233376446`*^9, 3.539909825507648*^9}, {
3.539911719093506*^9, 3.5399117237635126`*^9}, {3.5399117615235653`*^9,
3.539911789053604*^9}, {3.539911825573655*^9, 3.539911826853657*^9}, {
3.5399121026740427`*^9, 3.5399121080540504`*^9}, {3.5400525421824102`*^9,
3.540052546452416*^9}, {3.540225445604204*^9, 3.5402254620466332`*^9}, {
3.540246837799783*^9, 3.5402468548298073`*^9}, 3.540253158138632*^9, {
3.540258206054838*^9, 3.5402582233148623`*^9}, {3.540258564005339*^9,
3.5402585665953426`*^9}, 3.5403195777839775`*^9, 3.5403198886027546`*^9,
3.5403200387483425`*^9, {3.54034257060467*^9, 3.540342575644677*^9}, {
3.540398255328141*^9, 3.540398258401346*^9}, {3.5415590771274023`*^9,
3.5415591276558905`*^9}, {3.5416498676490674`*^9, 3.5416498715990725`*^9},
3.541875470169911*^9, {3.5605358410266924`*^9, 3.560535849346704*^9},
3.569695608938452*^9, {3.685766521868433*^9, 3.6857665223564615`*^9}, {
3.685814676765744*^9, 3.6858146853222337`*^9}, {3.685817453547567*^9,
3.6858175185792866`*^9}, {3.6858175674780836`*^9, 3.685817574945511*^9}, {
3.6858246965328417`*^9, 3.6858247677889175`*^9}, 3.6858453089704947`*^9, {
3.6860825269125957`*^9, 3.686082527470628*^9}, {3.6860834981161456`*^9,
3.686083498123146*^9}, 3.715212761472385*^9},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["X:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", " ",
SuperscriptBox["x", "n"]}]}], "]"}]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{
3.477935275784027*^9, {3.477935350060832*^9, 3.477935352384173*^9}, {
3.477935393803731*^9, 3.477935400102789*^9}, {3.477935515378547*^9,
3.47793552034569*^9}, 3.478120029940968*^9, {3.479318860690858*^9,
3.47931886615872*^9}, {3.4794185033278093`*^9, 3.479418503918659*^9},
3.4795122294117584`*^9, {3.479615913307893*^9, 3.4796159352794867`*^9},
3.4796160386581373`*^9, 3.4796867204045024`*^9, {3.4928025699585147`*^9,
3.492802570130115*^9}, 3.492822274480175*^9, 3.492825822242408*^9, {
3.4940970615585365`*^9, 3.494097062168537*^9}, {3.496441349250718*^9,
3.496441349830719*^9}, 3.4964414848609076`*^9, 3.4964645213514385`*^9,
3.5192470594155855`*^9, {3.519247288125906*^9, 3.5192473207459517`*^9}, {
3.519247363296011*^9, 3.519247363796012*^9}, 3.519258420199427*^9,
3.5192584863895197`*^9, {3.519320760160028*^9, 3.519320767367241*^9},
3.5193299099191504`*^9, {3.5193300315093203`*^9, 3.519330031709321*^9}, {
3.5193323099968634`*^9, 3.5193324414114943`*^9}, {3.5193415804486094`*^9,
3.5193415824298124`*^9}, {3.5193459537101994`*^9,
3.5193459567210045`*^9}, {3.5193514074002457`*^9,
3.5193514076802464`*^9}, {3.5194037987985263`*^9, 3.519403799124545*^9},
3.519410735765964*^9, {3.5233155477729936`*^9, 3.5233155497329965`*^9}, {
3.5233157343632545`*^9, 3.5233157343632545`*^9}, 3.5239204163859615`*^9, {
3.5239209756969433`*^9, 3.523920976851345*^9}, {3.5239210574690866`*^9,
3.5239210738491154`*^9}, {3.529529514995768*^9, 3.52952953897301*^9}, {
3.529530096003188*^9, 3.5295300961903887`*^9}, 3.534007429411028*^9, {
3.541554026372131*^9, 3.5415540329709425`*^9}, {3.541554090269843*^9,
3.5415540937486486`*^9}, {3.5415541788779984`*^9,
3.5415541845564084`*^9}, {3.5415542699197583`*^9,
3.5415542699197583`*^9}, {3.5415545113613825`*^9, 3.541554511548583*^9}, {
3.541554961468973*^9, 3.5415549756805983`*^9}, {3.5416447241018667`*^9,
3.541644753441908*^9}, {3.541644874612077*^9, 3.541644887622095*^9}, {
3.5416450613923388`*^9, 3.5416450613923388`*^9}, {3.5416475854658723`*^9,
3.541647600335893*^9}, 3.541651849261842*^9, {3.560538025569751*^9,
3.560538025749751*^9}, 3.5605380751598206`*^9, {3.685764327542925*^9,
3.685764343098815*^9}, {3.6858163279191847`*^9, 3.6858163279191847`*^9}, {
3.6858225110038366`*^9, 3.685822514101014*^9}, {3.6858248618302965`*^9,
3.6858248620153074`*^9}, 3.685825042794647*^9, 3.686082506556432*^9,
3.686082903612142*^9, 3.6860834826962633`*^9},
FontSize->12,
FontWeight->"Bold"],
Cell["Rule:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.48070534977779*^9, {3.4928296953212276`*^9, 3.492829707041244*^9}, {
3.495391733731629*^9, 3.495391739521637*^9}, {3.495678797624714*^9,
3.4956788080547285`*^9}, 3.4956788502147875`*^9, {3.4956789897249827`*^9,
3.495679002425001*^9}, {3.495679072285098*^9, 3.4956790738051004`*^9}, {
3.495679236085328*^9, 3.495679236315328*^9}, {3.49567937329552*^9,
3.4956794246455917`*^9}, {3.495679535505747*^9, 3.495679554085773*^9}, {
3.5193214041603594`*^9, 3.5193214071867647`*^9}, {3.5193301244794507`*^9,
3.5193301257494526`*^9}, 3.5193476221390333`*^9, 3.5193479662828407`*^9, {
3.5193485103181963`*^9, 3.5193485549498744`*^9}, {3.519663663325344*^9,
3.5196636652216225`*^9}, {3.519680530562682*^9, 3.519680530562682*^9}, {
3.5197556284379497`*^9, 3.5197556284379497`*^9}, {3.5197580987514877`*^9,
3.519758100545491*^9}, {3.5197581334459496`*^9, 3.519758155582388*^9}, {
3.519758193256454*^9, 3.5197582684329863`*^9}, {3.5197584793297567`*^9,
3.519758583210339*^9}, {3.5197800633332853`*^9, 3.519780130444603*^9},
3.519780263762437*^9, {3.519780890789939*^9, 3.519780929602807*^9},
3.5197826749958725`*^9, {3.5213126916874757`*^9, 3.5213126916874757`*^9}, {
3.521328242751012*^9, 3.521328242751012*^9}, {3.532302339923381*^9,
3.5323023440533867`*^9}, {3.5323027369539366`*^9,
3.5323027369539366`*^9}, {3.5326362525142794`*^9,
3.5326362612742915`*^9}, {3.534962194665309*^9, 3.5349622042053223`*^9}, {
3.5349623337055035`*^9, 3.5349623339155035`*^9}, {3.5349625695458336`*^9,
3.5349625695458336`*^9}, {3.5349651959395103`*^9,
3.5349652008995175`*^9}, {3.534966956776985*^9, 3.5349669586769876`*^9}, {
3.534974691448103*^9, 3.5349746956381083`*^9}, {3.534975450099165*^9,
3.534975450099165*^9}, {3.5416444623515*^9, 3.5416444623515*^9}, {
3.5416447832619495`*^9, 3.5416447832619495`*^9}, {3.5416448932321033`*^9,
3.5416448932321033`*^9}, {3.5416450201822805`*^9,
3.5416450549723296`*^9}, {3.541647604455899*^9, 3.5416476054759007`*^9}}],
Cell[BoxData[
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", " ",
SuperscriptBox["x", "n"]}]}], "]"}]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]",
RowBox[{"x", " ", "\[LongRightArrow]", " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", " ",
SuperscriptBox["x", "n"]}]}], "]"}]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}]}]}]}]}]}]}]], "Subsubtitle",
CellDingbat->None,
CellChangeTimes->{{3.4796579732027807`*^9, 3.479658002474872*^9}, {
3.4796580599975853`*^9, 3.4796580609489536`*^9}, {3.479658295195784*^9,
3.47965829684816*^9}, 3.4796611938939075`*^9, 3.4796613924794593`*^9, {
3.479661443342597*^9, 3.479661446647349*^9}, {3.479661576554146*^9,
3.479661589302477*^9}, 3.479661847553824*^9, {3.4796622294729967`*^9,
3.4796622450654173`*^9}, {3.479686720424531*^9, 3.4796867204345455`*^9}, {
3.4796874646646957`*^9, 3.4796874745589232`*^9}, {3.492826573513727*^9,
3.492826578630536*^9}, {3.4928267070863624`*^9, 3.492826707460763*^9},
3.4928267903497095`*^9, {3.492829799151373*^9, 3.4928299617216005`*^9}, {
3.4940972077187414`*^9, 3.4940972347887793`*^9}, {3.496441851501421*^9,
3.496441872881451*^9}, {3.496528916553913*^9, 3.4965289272239285`*^9}, {
3.497576165747217*^9, 3.4975761801372375`*^9}, {3.4978101340656495`*^9,
3.4978101470356674`*^9}, {3.497810228295781*^9, 3.497810232715788*^9},
3.497810535736212*^9, {3.5415550260686865`*^9, 3.541555037893507*^9}, {
3.541644759091915*^9, 3.5416447617719193`*^9}, {3.5416518628618608`*^9,
3.5416518649018636`*^9}, {3.685764343626845*^9, 3.6857643441298738`*^9}, {
3.6858225276087866`*^9, 3.685822531921033*^9}, {3.685824865399501*^9,
3.685824867695632*^9}, {3.6860825068284473`*^9, 3.6860825071644664`*^9}, {
3.686083482710264*^9, 3.686083482717265*^9}},
TextAlignment->Center,
FontSize->12,
FontWeight->"Bold"],
Cell["Program code:", "Subsubsection",
CellDingbat->"\[FilledSmallSquare]",
CellChangeTimes->{{3.4794189093216*^9, 3.479418932274605*^9}, {
3.479418981395237*^9, 3.4794189822564754`*^9}, {3.4794192068193808`*^9,
3.4794192077607346`*^9}, 3.479420089138093*^9, {3.479420130978256*^9,
3.4794201410627565`*^9}, {3.479420560345656*^9, 3.479420578171288*^9}, {
3.479420683943381*^9, 3.4794206847645617`*^9}, {3.4794210347678413`*^9,
3.4794210503903055`*^9}, 3.4803613662913427`*^9, {3.480361406058525*^9,
3.48036141974821*^9}, {3.4803614672865667`*^9, 3.480361474717252*^9},
3.4807050675119123`*^9, {3.492804314166378*^9, 3.4928043441496305`*^9}, {
3.4928044532166224`*^9, 3.492804453513023*^9}, {3.492805162266266*^9,
3.492805165713872*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "+",
RowBox[{"b_.", "*",
RowBox[{"Sech", "[",
RowBox[{"c_.", "+",
RowBox[{"d_.", "*",
RowBox[{"x_", "^", "n_"}]}]}], "]"}]}]}], ")"}], "^", "p_."}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{"Unintegrable", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", "*",
RowBox[{"x", "^", "n"}]}]}], "]"}]}]}], ")"}], "^", "p"}], ",",
"x"}], "]"}], " ", "/;", "\n",
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "c", ",", "d", ",", "n", ",", "p"}], "}"}],
",", "x"}], "]"}]}]}]], "Code",
CellChangeTimes->{{3.494097279728842*^9, 3.494097309778884*^9},
3.496441834031397*^9, 3.496442095051762*^9, 3.496528791863739*^9,
3.496528888643874*^9, 3.497575939976901*^9, 3.4975761146971455`*^9,
3.4978099270853596`*^9, 3.497810062495549*^9, 3.4978101813857155`*^9,
3.497810442686082*^9, {3.541554243462112*^9, 3.541554250154524*^9}, {
3.541555044039918*^9, 3.541555107157629*^9}, {3.541644789891958*^9,
3.5416447903319592`*^9}, {3.541644910332127*^9, 3.5416449689922094`*^9}, {
3.541645076192359*^9, 3.5416451034423976`*^9}, 3.5416476094459057`*^9,
3.541649758068914*^9, {3.541651868011868*^9, 3.541651884451891*^9},
3.5605378485895033`*^9, {3.685764344682905*^9, 3.685764345178934*^9}, {
3.685822549117017*^9, 3.68582257452247*^9}, {3.6858248704307885`*^9,
3.685824883232521*^9}, {3.686082507461484*^9, 3.6860825077254987`*^9}, {
3.686083482724265*^9, 3.6860834827302656`*^9}, 3.7123384375435486`*^9,
3.7156171764433675`*^9},
Background->GrayLevel[0.85]],
Cell[BoxData[
RowBox[{
RowBox[{"Int", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a_.", "+",
RowBox[{"b_.", "*",
RowBox[{"Csch", "[",
RowBox[{"c_.", "+",
RowBox[{"d_.", "*",
RowBox[{"x_", "^", "n_"}]}]}], "]"}]}]}], ")"}], "^", "p_."}], ",",
"x_Symbol"}], "]"}], " ", ":=", "\n", " ",
RowBox[{
RowBox[{"Unintegrable", "[",
RowBox[{
RowBox[{
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", "*",
RowBox[{"Csch", "[",
RowBox[{"c", "+",
RowBox[{"d", "*",
RowBox[{"x", "^", "n"}]}]}], "]"}]}]}], ")"}], "^", "p"}], ",",
"x"}], "]"}], " ", "/;", "\n",
RowBox[{"FreeQ", "[",
RowBox[{
RowBox[{"{",
RowBox[{"a", ",", "b", ",", "c", ",", "d", ",", "n", ",", "p"}], "}"}],
",", "x"}], "]"}]}]}]], "Code",
CellChangeTimes->{{3.494097279728842*^9, 3.494097309778884*^9},
3.496441834031397*^9, 3.496442095051762*^9, 3.496528791863739*^9,
3.496528888643874*^9, 3.497575939976901*^9, 3.4975761146971455`*^9,
3.4978099270853596`*^9, 3.497810062495549*^9, 3.4978101813857155`*^9,
3.497810442686082*^9, {3.541554243462112*^9, 3.541554250154524*^9}, {
3.541555044039918*^9, 3.541555107157629*^9}, {3.541644789891958*^9,
3.5416447903319592`*^9}, {3.541644910332127*^9, 3.5416449689922094`*^9}, {
3.541645076192359*^9, 3.5416451034423976`*^9}, 3.5416476094459057`*^9,
3.541649758068914*^9, {3.541651868011868*^9, 3.541651884451891*^9},
3.5605378485895033`*^9, {3.685764344682905*^9, 3.685764345178934*^9}, {
3.685822549117017*^9, 3.685822591096418*^9}, {3.6858248726949177`*^9,
3.685824878899273*^9}, {3.686082527981657*^9, 3.686082528349678*^9}, {
3.6860834981301465`*^9, 3.686083498137147*^9}, 3.7123384375525494`*^9,
3.715617179234527*^9},
Background->GrayLevel[0.85]],
Cell["", "Subsubsection",
CellDingbat->None,
CellChangeTimes->{3.4796643211106243`*^9}]
}, Closed]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{Cell[TextData[StyleBox["S:",
FontFamily->"Arial",
FontColor->RGBColor[1, 0, 0]]], "None"], " ",
RowBox[{"\[Integral]",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"a", "+",
RowBox[{"b", " ",
RowBox[{"Sech", "[",
RowBox[{"c", "+",
RowBox[{"d", " ",
SuperscriptBox["u", "n"]}]}], "]"}]}]}], ")"}], "p"],
RowBox[{"\[DifferentialD]", "x"}], " ",
StyleBox["when",
FontFamily->"Arial",
FontWeight->"Plain"],
StyleBox[" ",
FontFamily->"Arial",
FontWeight->"Plain"], Cell[TextData[Cell[BoxData[